home *** CD-ROM | disk | FTP | other *** search
/ Megadoom II / MEGADOOM II - iso.7z / MEGADOOM II.ISO / doom / editors / map / dmpsmu / source / print.h < prev    next >
C/C++ Source or Header  |  1994-09-07  |  2KB  |  41 lines

  1. /*
  2.    DooM PostScript Maps Utility, by Frans P. de Vries.
  3.  
  4. Derived from:
  5.  
  6.    Doom Editor Utility, by Brendon Wyber and Raphaδl Quinet.
  7.  
  8.    You are allowed to use any parts of this code in another program, as
  9.    long as you give credits to the authors in the documentation and in
  10.    the program itself.  Read the file README for more information.
  11.  
  12.    This program comes with absolutely no warranty.
  13.  
  14.    PRINT.H - Print flag definitions.
  15. */
  16.  
  17.  
  18. /* the external variables from print.c */
  19.                 /* if TRUE ('+');        if FALSE ('-')        */
  20. extern Bool FlagDoublePg;    /* print double page;    print normal page     */
  21. extern Bool FlagQuadplPg;    /* print quadruple page; print normal page     */
  22. extern Bool FlagA4Letter;    /* print A4 paper;       print Letter paper    */
  23. extern Bool FlagBorder;        /* print border;         print no border       */
  24. extern Bool FlagDecors;        /* print decors;         print no decors       */
  25. extern Bool FlagEnemies;    /* print enemies;        print no enemies      */
  26. extern Bool FlagFadeLins;    /* fade secret lines;    don't fade sec.lines  */
  27. extern Bool FlagGoodies;    /* print goodies;        print no goodies      */
  28. extern Bool FlagLegend;        /* print thing legend;   print no thing legend */
  29. extern Bool FlagMultPlay;    /* print multi things;   print no multi things */
  30. extern Bool FlagName;        /* print level name;     print no level name   */
  31. extern Bool FlagPortrait;    /* print portrait;       print landscape       */
  32. extern Bool FlagShdAreas;    /* shade secret areas;   don't shade sec.areas */
  33. extern Bool FlagTeleprts;    /* link teleports;       don't link teleports  */
  34. extern Bool FlagUltraVlc;    /* print UV things;      print non-UV things   */
  35. extern Bool FlagAutoZoom;    /* auto-zoom map scale;  default map scale     */
  36.  
  37. extern BCINT MapCenterX;    /* X coord of map center */
  38. extern BCINT MapCenterY;    /* Y coord of map center */
  39.  
  40. /* end of file */
  41.